home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / pc / pm65sdk / sourcecode / pagemakerclasslibrary / commands / pcreatetoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-04  |  672 b   |  36 lines

  1. /*
  2.  *--- PCreateTOC.h --------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PCreateTOC__
  10. #define __PCreateTOC__
  11.  
  12. #include "PMTypes.h"
  13. #include "PKeywords.h"
  14.  
  15. class PCreateTOC
  16. {
  17.  
  18. public:
  19.  
  20.     PCreateTOC
  21.       (    const char * sTitle,
  22.         PMBool bReplace,
  23.         PMBool bBook,
  24.         eTOC cFormat,
  25.         const char * sBetString,
  26.         PMBool bHiddenLayers );
  27.  
  28. private:
  29.  
  30.     PCreateTOC();
  31. };
  32.  
  33. #endif
  34.  
  35. // end of PCreateTOC.h
  36.